home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / count_cgi.nasl < prev    next >
Text File  |  2005-03-31  |  2KB  |  63 lines

  1. #
  2. # This script was entirely rewritten by Michel Arboi <mikhail@.nessus.org>
  3. #
  4. # GNU Public License
  5. #
  6.  
  7. if(description)
  8. {
  9.  script_id(10049);
  10.  script_bugtraq_id(128);
  11.  script_version ("$Revision: 1.21 $");
  12.  script_cve_id("CVE-1999-0021");
  13.  name["english"] = "Count.cgi";
  14.  script_name(english:name["english"]);
  15.  
  16.  desc["english"] = "
  17. An old version of 'Count.cgi' cgi is installed. 
  18. It has a well known security flaw that lets anyone execute arbitrary
  19. commands with the privileges of the http daemon (root, nobody, www...)
  20.  
  21. ** Note that Nessus only checked the version number 
  22.  
  23. Solution : upgrade to wwwcount 2.4 or later.
  24.  
  25. Risk factor : High";
  26.  
  27.  
  28.  script_description(english:desc["english"]);
  29.  
  30.  summary["english"] = "Checks Count.cgi version";
  31.  script_summary(english:summary["english"]);
  32.  
  33.  script_category(ACT_GATHER_INFO);
  34.  
  35.  
  36.  script_copyright(english:"This script is Copyright (C) 2004 Michel Arboi");
  37.  
  38.  family["english"] = "CGI abuses";
  39.  family["francais"] = "Abus de CGI";
  40.  script_family(english:family["english"], francais:family["francais"]);
  41.  script_dependencie("find_service.nes", "http_version.nasl", 
  42.     "DDI_Directory_Scanner.nasl");
  43.  script_require_ports("Services/www", 80);
  44.  exit(0);
  45. }
  46.  
  47. #
  48. include("http_func.inc");
  49. include("http_keepalive.inc");
  50. port = get_http_port(default:80);
  51.  
  52. foreach d (cgi_dirs())
  53. {
  54.   req = http_get(port: port, item: strcat(d, "/Count.cgi?align=topcenter"));
  55.   r = http_keepalive_send_recv(port: port, data: req);
  56.   r = strstr(r, "Count.cgi ");
  57.   if (r && ereg(string:r, pattern:".*Count\.cgi +([01]\.[0-9]+|2\.[0-3]+)"))
  58.   {
  59.     security_hole(port);
  60.     exit(0);
  61.   }
  62. }
  63.